home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / More Source / Libraries / SAT 2.3b4 / Misc / TransSkel / TransSkel.p < prev   
Text File  |  1995-01-27  |  54KB  |  1,723 lines

  1. {    TransSkel version 2.00 - Transportable application skeleton}
  2.  
  3. {    TransSkel is public domain and was originally written in LightSpeed C by:}
  4.  
  5. {            Paul DuBois}
  6. {            Wisconsin Regional Primate Research Center}
  7. {            1220 Capital Court}
  8. {            Madison WI  53706  USA}
  9.  
  10. {    UUCP:    [allegra,ihnp4,seismo]!uwvax!rhesus!dubois }
  11. {    ARPA:    dubois@rhesus.primate.wisc.edu}
  12. {    The Pascal Version of TransSkel is public domain and was ported and changed by        }
  13.  
  14. {            Owen Hartnett            }
  15. {            Ωhm Software            }
  16. {            163 Richard Drive        }
  17. {            Tiverton, RI 02878        }
  18.  
  19. {    CSNET:    omh@cs.brown.edu.CSNET                                             }
  20. {    ARPA:        omh%cs.brown.edu                                                    }
  21. {    UUCP:        [ihnp4,allegra]!brunix !omh                                            }
  22.  
  23. {    This version of TransSkel written for Lightspeed Pascal.  Lightspeed Pascal is a}
  24. {    trademark of:}
  25. {            THINK Technologies, Inc}
  26. {            420 Bedford Street  Suite 350}
  27. {            Lexington, MA  02173  USA}
  28.  
  29. {  History}
  30. {  06/13/86    Beta version. (pd) }
  31. {  08/27/86    Version number changed to 1.01.(pd)}
  32. {              v1.0 DoGrow bug fixed - the port at the point of the}
  33. {              InvalRect could have been anything; the fix is to set}
  34. {              the port to the grown window first.  This also explains}
  35. {              why the kludge to DoActivate in v1.0 worked.(pd)}
  36. {  10/02/86    Version number changed to 1.02, as a result of adding}
  37. {            modifications by David W. Berry (well!dwb@lll-lcc.arpa)}
  38. {            for supporting window zooming.  Also used his modifications}
  39. {            for supporting modeless dialogs (though not in the same}
  40. {            form).  Dialogs can be #define'd on or off.(pd)}
  41.  
  42. {12/ 28 / 86 Version number changed to 1.03 . Modified to work under LightspeedC v . 2.01 }
  43. {            - took out definitions for window zooming stuff , as it is now supported by the compiler}
  44. {             directly . Also declared DoZoom static , fixing an oversight . ( pd )}
  45. { 01 / 18 / 86 Put a SetPort into DoZoom - ZoomWindow requires port to be}
  46. {            set to window being zoomed . ( pd )}
  47. { 02 / 05 / 86 Version number changed to 1.04 . Big change : port setting behavior made explicit}
  48. {             - the only persistant switch occurs when a window comes active . This changes }
  49. {            underlying programming model ( see manual for detailed discussion ) . Thanks to}
  50. {             Duane Williams for pointing out that this should be done . Typedef 'd }
  51. {            integer/long variables to Integer, Longint to facilitate coversion to other C }
  52. {            compilers . More complete type-casting done . LightspeedC does a lot of it }
  53. {            automatically , other compilers may not . ( pd - this version never released ) }
  54. {03 / 02 / 87 Fixed bug whereby clicks in drag region of non - active windows may not bring }
  55. {            window to front . Seems to be due to DragWindow calling StillDown to see    if mouse is still }
  56. {            down .    If the machine was busy    otherwise when click occurred and }
  57. {            mouse already up when DragWindow is called , the click ends up being ignored . }
  58. {            Thanks to Roger Humphrey for finding this one . }
  59.  
  60. {* * * Changes implemented first by omh to Pascal Version}
  61.  
  62. { 12/24/86  Finished first Pascal version.   Dialogs cannot be defined off.     (omh)}
  63.  
  64. {4 / 18 / 87 Changed Desk Accessory code so it 's more tolerant of memory}
  65. {            conditions for desk accessories . ( omh ) }
  66. {7 / 12 / 87 Added "cache " code to GetWDHandler . Now TransSkel figures }
  67. {            that an event is most likely to occur for the same window as the previous }
  68. {            event . Thus the WindowPtr and WDHandle for events are cached and examined }
  69. {            to avoid searching through the handler list . ( omh ) }
  70. {7 / 12 / 87 Excised the notorious "SetPort "excess . As pointed out by Duane Williams ,}
  71. {             SetPort traps abounded unnecessarily in version 1.02 . These have been eliminated }
  72. {            now with two exceptions . First , the port is set when a window handler }
  73. {            is installed . The justification for this is that when a handler is installed , it }
  74. {            is likely that further processing will be done on it immediately . The application gets }
  75. {            control immediately after the handler is installed anyway , so this behavior can be manually }
  76. {            overridden where necessary . Second , when a window is activated , the port is}
  77. {            set to it . This follows the model of keeping the port in sync with the }
  78. {            active window . ( omh ) }
  79. {7 / 14 / 87 Added grow zone function installation    and MoreMasters to SkelInit , }
  80. {            which now requires two parameters . The first indicates the number of times to call }
  81. {            MoreMasters . The second is a ProcPtr indicating a user - supplied grow zone}
  82. {            function to be called when memory problems occur .  If nil , no grow zone}
  83. {            function is    installed . ( omh ) }
  84. {7 / 14 / 87 SkelMenu , SkelWindow , and SkelDialog now return zero or non - zero to indicate }
  85. {            failure or success of handler allocation . This could break * all * previous TransSkel }
  86. {            applications ( as will the change to SkelInit , above . Please see the section "How to }
  87. {            adapt old TransSkel to New "    in the manual    for detailed specifications on }
  88. {            how to convert your old programs . TransSkel becomes more memory conscious}
  89. {            with these changes . The functions SkelMenu , SkelWindow , and }
  90. {            SkelDialog are the only routines which actually allocate memory . Since they may be }
  91. {            called at any time , knowing that you have enough memory becomes important . Thus , }
  92. {            these routines return a value to indicate what happened .  If they return zero ,}
  93. {             then memory allocation failed . ( omh ) }
  94. {10 / 21 / 87 Added another parameter to SkelMenu:  drawBar: Boolean . This tells SkelMenu }
  95. {            whether to draw the menu bar after adding the Menu . This is done to eliminate }
  96. {            the menus popping up one at a time . Simply call SkelMenu  with drawBar false}
  97. {            until the    last time you call SkelMenu , then call it (for the last menu )}
  98. {            with drawBar true . ( omh ) }
  99. {10 / 26 / 87 Removed declarations for zoom - in and zoom - out . Added Pascal }
  100. {            changes ( above ) to C version . ( omh )}
  101.  
  102. {    02 / 02 / 88 Merged pd 's 1.04 changes with those of omh, above, to create}
  103. {            release version 2.0 . Fixed bug whereby cmd - key equivalents}
  104. {            for menu selections would execute twice if DA window in front . Thanks }
  105. {            to Don Fredkin and Julian Vrieslander for finding this one , and to Don for the}
  106. {             best fix . ( pd ) }
  107. { 10/28/88 Removed all New Rom calls. }
  108. { 10/28/88 Added support for conditional compilation for dialogs and MPW support.  By setting }
  109. {            the Think_pascal flag to false, TransSkel will run under MPW. Now correctly written for LSP 2.0}
  110.  
  111. {Some fixes done later by Ingemar Ragnemalm. Search for "Ingemar" fo find these.}
  112. {They include some bug fix and hierarcical menu support (call SkelHMenu instead of SkelMenu}
  113. {for those menus).}
  114.  
  115. {New fix 18/9-93: Added a filter proc for dialogs, to allow special event processing before}
  116. {an event is passed to IsDialogEvent, when a modeless dialog is in the front. This makes it possible}
  117. {to use user items in modeless dialogs, and to handle return/enter.}
  118.  
  119. {Added WNE-support. Use SkelSetSleep and SkelSetMouseRgn if you need them. /Ingemar}
  120.  
  121. {Added FindWindowByRefcon, a routine that is useful for certain multi-window appplications.}
  122.  
  123. {july -94: Plugged in suspend/resume-handlers, conforming with TransSkel 3.0. (Handler should}
  124. {take a boolean as parameter. If the boolean is true, the application was resumed, otherwise it was}
  125. {suspended.) Processes Apple Events by calling AEProcessAppleEvent for you.}
  126.  
  127. unit TransSkel;
  128.  
  129. interface
  130.  
  131. {$IFC UNDEFINED GENERATINGPOWERPC }
  132. {$SETC GENERATINGPOWERPC:= false }
  133. {$ENDC}
  134.  
  135. {$SETC supportDialogs:= true }
  136.                     { Set to false to disallow modeless dialog support and save code space }
  137.                 { Set to false to have SkelInit call QuickDraw Inits: InitGraf, InitDialog, etc. }
  138.  
  139. {$IFC UNDEFINED THINK_PASCAL}
  140.     uses
  141.         Types, Quickdraw,{, OSIntf, ToolIntf, PackIntf}
  142.         Menus, Windows, Memory, SegLoad, Scrap, ToolUtils, Fonts,{}
  143. {$IFC GENERATINGPOWERPC }
  144.         PPCTransSkelCallProcs, 
  145. {$ENDC}
  146.         Devices, TextEdit, Traps, Events, Dialogs, Resources, DiskInit, AppleEvents;
  147. {$ELSEC}
  148.     uses
  149.         InterfacesUI; {UPI interfaces in one file for Think Pascal}
  150. {$ENDC}
  151.  
  152.     procedure SkelInit (noMasters: integer; myGrowZone: ProcPtr);
  153.     procedure SkelMain;
  154.     procedure SkelWhoa;
  155.     procedure SkelClobber;
  156.     function SkelMenu (theMenu: MenuHandle; pSelect: ProcPtr; pClobber: ProcPtr; DrawBar: Boolean): Boolean;
  157.     function SkelHMenu (theMenu: MenuHandle; pSelect: ProcPtr; pClobber: ProcPtr): Boolean; {Added by Ingemar 22/8 -93}
  158.     procedure SkelRmveMenu (theMenu: MenuHandle);
  159.     procedure SkelApple (aboutTitle: Str255; aboutProc: ProcPtr);
  160.     function SkelWindow (theWind: WindowPtr; pMouse, pKey, pUpdate, pActivate, pClose, pClobber, pIdle: ProcPtr; frontOnly: Boolean): Boolean;
  161.     procedure SkelRmveWind (theWind: WindowPtr);
  162. {$IFC supportDialogs }
  163.     function SkelDialog (theDialog: DialogPtr; pEvent, pClose, pClobber, pFilter: ProcPtr): Boolean; {pFilter added by Ingemar 18/9-93}
  164.     procedure SkelRmveDlog (theDialog: DialogPtr);
  165. {$ENDC}
  166.     procedure SkelGrowBounds (theWind: WindowPtr; hLO, vLo, hHi, vHi: integer);
  167.     procedure SkelEventMask (mask: integer);
  168.     procedure SkelGetEventMask (var mask: integer);
  169.     procedure SkelBackground (p: ProcPtr);
  170.     procedure SkelGetBackground (var p: ProcPtr);
  171.     procedure SkelEventHook (p: ProcPtr);
  172.     procedure SkelGetEventHook (var p: ProcPtr);
  173. {$IFC supportDialogs }
  174.     procedure SkelDlogMask (mask: integer);
  175.     procedure SkelGetDlogMask (var mask: integer);
  176. {$ENDC}
  177. {Two new procedures for WNE-support, added by Ingemar 12/11-93}
  178.     procedure SkelSetSleep (newSleep: Longint);
  179.     procedure SkelSetMouseRgn (newMouseRgn: RgnHandle);
  180. {Utility function, added by Ingemar 13/7-94}
  181.     function FindWindowByRefcon (theRefCon: Longint): WindowPtr;
  182. {Suspend/resume, added by Ingemar 23/7 -94}
  183.     procedure SkelSetSuspendResume (p: ProcPtr);
  184.     function SkelGetSuspendResume: ProcPtr;
  185.  
  186. implementation
  187.  
  188. {Some stuff that are here to avoid including EPPC and AppleEvents, added by Ingemar 23/7 -94}
  189.     {const}
  190. {        kHighLevelEvent = 23;}
  191. {    function AEProcessAppleEvent (theEventRecord: EventRecord): OSErr;}
  192. {    inline}
  193. {        $303C, $021B, $A816;}
  194.  
  195.  
  196.  
  197.     const
  198.         mBarHeight = 20;    { menu bar height.  All window sizing}
  199.  
  200.         GrowZoneSize = 4000;        {  Size of memory to be freed when GrowZone Proc called }
  201.  
  202.         defaultSleep = 5;        { Added by Ingemar dec -93. SkelInit uses this value for sleep time.}
  203.                             { The programmer can change it with SkelSetSleep }
  204.  
  205. {    This window zooming stuff may need to be removed if you use the new Rom libraries        }
  206. {    if not, then you can add zooming without the overhead of the new Rom libs.  See TrackBox    }
  207. {     routine also.                                                                                            }
  208.  
  209. {    Window and Menu handler types, constants, variables.}
  210.  
  211. {    whList and mhList are the lists of window and menu handlers.}
  212. {    whClobOnRmve and mhClobOnRmve are true if the handler disposal proc}
  213. {    is to be called when a handler is removed.  They are temporarily set}
  214. {    false when handlers are installed for windows or menus that already}
  215. {    have handlers - the old handler is removed WITHOUT calling the}
  216. {    disposal proc.}
  217.  
  218. {    Default lower limits on window sizing of 80 pixels both directions is}
  219. {    sufficient to allow text windows room to draw a grow box and scroll}
  220. {    bars without having the thumb and arrows overlap.  These values may}
  221. {    be changed if such a constraint is undesirable with SkelGrowBounds.}
  222. {    Default upper limits are for the Macintosh, not the Lisa, but are set}
  223. {    per machine in SkelInit.}
  224.  
  225.     type
  226.         WHandlerPtr = ^WHandler;
  227.         WHandlerHnd = ^WHandlerPtr;
  228.         WHandler = record
  229.                 whWind: WindowPtr;    {window/dialog to be handled    }
  230.                 whClobber: ProcPtr;    { data structure disposal proc    }
  231.                 whMouse: ProcPtr;        { mouse-click handler proc        }
  232.                 whKey: ProcPtr;        { key-click handler proc            }
  233.                 whUpdate: ProcPtr;        { update handler proc                }
  234.                 whActivate: ProcPtr;    { activate event handler proc    }
  235.                 whClose: ProcPtr;        { close "event" handler proc        }
  236.                 whIdle: ProcPtr;            { main loop proc                    }
  237. {$IFC supportDialogs }
  238.                 whEvent: ProcPtr;        { dialog event proc                }
  239.                 whFilter: ProcPtr;        { dialog filter proc ADDED BY INGEMAR 18/9 -93}
  240. {$ENDC }
  241.                 whHasGrow: Boolean;    { can window grow?                }
  242.                 whGrow: Rect;            { limits on window sizing        }
  243.                 whSized: Boolean;        { true = window was resized    }
  244.                 whFrontOnly: Boolean;    { true = idle only when active    }
  245.                 whNext: WHandlerHnd;            { next window handler            }
  246.             end;
  247.  
  248.         MHandlerPtr = ^MHandler;
  249.         MHandlerHnd = ^MHandlerPtr;
  250.  
  251.         MHandler = record
  252.                 mhID: integer;                { menu id                                    }
  253.                 mhSelect: ProcPtr;            { item selection handler proc            }
  254.                 mhClobber: ProcPtr;        { menu disposal handler proc            }
  255.                 mhNext: MHandlerHnd;        { next menu handler                        }
  256.             end;
  257.  
  258.     var
  259.         whList: WHandlerHnd;                { list of menu handlers }
  260.         whClobOnRmve: Boolean;
  261.         growRect: Rect;
  262.         mhList: MHandlerHnd;
  263.         mhClobOnRmve: Boolean;
  264.  
  265. {    Variables for default Apple menu handler.  appleID is set to 1 if}
  266. {    SkelApple is called and is the id of the Apple menu, appleAboutProc}
  267. {    is the procedure to execute if there is an About... item and it's}
  268. {    chosen from the Apple menu.  If doAbout is true, then the menu}
  269. {    contains the About... item, otherwise it's just desk accessories.}
  270.  
  271.         appleMenu: MenuHandle;
  272.         appleID: integer;
  273.         appleAboutProc: ProcPtr;
  274.         doAbout: Boolean;
  275.  
  276. {    Miscellaneous}
  277.  
  278. {    screenPort points to the window manager port.}
  279.  
  280. {    doneFlag determines when SkelMain returns.  It is set by calling}
  281. {    SkelWhoa(), which the host does to request a halt.}
  282.  
  283. {    pBkgnd points to a background procedure, to be run during event}
  284. {    processing.  Set it with SkelBackground.  If nil, there's no}
  285. {    procedure.}
  286.  
  287. {    pEvent points to an event-inspecting hook, to be run whenever an}
  288. {    event occurs.  Set it with SkelEventHook.  If nil, there's no}
  289. {    procedure.}
  290.  
  291. {    eventMask controls the event types requested in the GetNextEvent}
  292. {    call in SkelMain.}
  293.  
  294. {    diskInitPt is the location at which the disk initialization dialog}
  295. {    appears, if an uninitialized disk is inserted.}
  296.  
  297.         screenPort: GrafPtr;
  298.         doneFlag: integer;
  299.         pBkgnd: ProcPtr;
  300.         pEvent: ProcPtr;
  301.         eventMask: integer;
  302.         diskInitPt: Point;
  303.  
  304. {Added by Ingemar 12/11-93, for WNE-support:}
  305.         WNEImplemented: Boolean;
  306.         sleepTicks: Longint;
  307.         mouseRgn: rgnHandle;
  308. {…and later, for suspend/resume support:}
  309.         gSuspendResumeHandler: ProcPtr;
  310.  
  311. {$IFC supportDialogs }
  312.  
  313. {    Events that are passed to dialogs.  Others are ignored.}
  314. {    Standard mask passes , mousedown, keydown, autokey, update,}
  315. {    activate and null events.  Null events are controlled by bit 0.}
  316.  
  317.         dlogEventMask: integer;
  318. {$ENDC}
  319.         pEventflag: Boolean;
  320.  
  321. {    "caching" global variables.  previous version would search down the window }
  322. {    list for every event it found.  Now, if the event happened to the same window }
  323. {    as last time, GetWDHandler will just do a simple compare }
  324. {    and return the last window handler.  This speeds up multiple window applications }
  325. {    immensely, at only a slight cost when you activate a new window (one }
  326. {    compare!)  If you don't like it, use the old version. }
  327.  
  328.         oldWindow: WindowPtr;
  329.         oldWDHandler: WHandlerHnd;
  330.  
  331. {    Global for built in "Grow Zone" function  }
  332.  
  333.         safetyHandle: Handle;
  334.  
  335.         myDitl: packed array[0..100] of byte;
  336.  
  337. { Rather than including the entire new ROM libraries, with all the other stuff you might not use    }
  338. { I've instead included just the Zoom box stuff here.  Depending on your status, you can either    }
  339. { leave things as they are, and only use zooming from the new Rom libs, or comment out the        }
  340. { calls, and include the new Rom libraries if you want to incorporate other new Rom calls        }
  341.  
  342.  
  343. { -------------------------------------------------------------------- }
  344. {                        Internal (private) Routines                                    }
  345. { -------------------------------------------------------------------- }
  346.  
  347.  
  348.  
  349. {    Get handler associated with user or dialog window.}
  350. {    Return nil if window doesn't belong to any known handler.}
  351. {    This routine is absolutely fundamental to TransSkel.}
  352.  
  353.     function GetWDHandler (theWind: WindowPtr): WHandlerHnd;
  354.  
  355.         var
  356.             h: WHandlerHnd;
  357.     begin
  358.         h := WhList;
  359.         GetWDHandler := nil;
  360.         if theWind = oldWindow then            {  caching code     }
  361.             GetWDHandler := oldWDHandler
  362.         else
  363.             while h <> nil do
  364.                 if h^^.whWind = theWind then
  365.                     begin
  366.                         oldWindow := theWind;            { Load in new values for new window }
  367.                         oldWDHandler := h;
  368.                         GetWDHandler := h;
  369.                         h := nil;
  370.                     end
  371.                 else
  372.                     h := WHandlerHnd(h^^.whNext);
  373.     end;
  374.  
  375. { Get Handler associated with user window.  Return nil if window doesn't}
  376. {  have a Handler. }
  377.  
  378.     function GetWHandler (theWind: WindowPtr): WHandlerHnd;
  379.  
  380.         var
  381.             h: WHandlerHnd;
  382.             myPeek: WindowPeek;
  383.  
  384.     begin
  385. {BUG FIXED by Ingemar 19/9-93. This function retured garbage when passed a dialog}
  386.         h := GetWDHandler(theWind);
  387.         myPeek := WindowPeek(theWind);
  388.         GetWHandler := nil; {default, moved up by Ingemar}
  389.         if h <> nil then
  390.             begin
  391.                 if mypeek^.windowKind <> dialogKind then
  392.                     GetWHandler := h;
  393.             end;
  394.     end;
  395.  
  396. {$IFC supportDialogs }
  397.  
  398. {    Get handler associated with dialog window.}
  399. {    Return nil if window doesn't belong to any known handler.}
  400.  
  401.     function GetDHandler (theDialog: WindowPtr): WHandlerHnd;
  402.  
  403.         var
  404.             h: WHandlerHnd;
  405.             myPeek: WindowPeek;
  406.  
  407.     begin
  408. {BUG FIXED by Ingemar 19/9-93. This function retured garbage when passed a non-dialog}
  409.         h := GetWDHandler(theDialog);
  410.         myPeek := WindowPeek(theDialog);
  411.         GetDHandler := nil; {default - moved up by Ingemar}
  412.         if h <> nil then
  413.             begin
  414.                 if mypeek^.windowKind = dialogKind then
  415.                     GetDHandler := h;
  416.             end;
  417.     end;
  418. {$ENDC}
  419.  
  420. {Two new routines added by Ingemar 12/11-93 for WNE support:}
  421.     procedure SkelSetSleep (newSleep: Longint);
  422.     begin
  423.         sleepTicks := newSleep;
  424.     end;
  425.     procedure SkelSetMouseRgn (newMouseRgn: RgnHandle);
  426.     begin
  427.         mouseRgn := newMouseRgn;
  428.     end;
  429.  
  430. {Utility routine added by Ingemar july 1994. Finds a window in the window list that has the same}
  431. {refCon as the value passed. This is useful for programs where several windows share window handlers.}
  432. {(To be precise, i needed it for a program where I have several connections to other Macs over Appletalk.)}
  433.     function FindWindowByRefcon (theRefCon: Longint): WindowPtr;
  434.         var
  435.             h: WHandlerHnd;
  436.     begin
  437.         FindWindowByRefcon := nil;
  438.         h := WhList;
  439.         while h <> nil do
  440.             if WindowPeek(h^^.whWind)^.refCon = theRefCon then
  441.                 begin
  442.                     FindWindowByRefcon := h^^.whWind;
  443.                     exit(FindWindowByRefcon);
  444.                 end
  445.             else
  446.                 h := WHandlerHnd(h^^.whNext);
  447.     end;
  448.  
  449.     procedure SkelSetSuspendResume (p: ProcPtr);
  450.     begin
  451.         gSuspendResumeHandler := p;
  452.     end;
  453.     function SkelGetSuspendResume: ProcPtr;
  454.     begin
  455.         SkelGetSuspendResume := gSuspendResumeHandler;
  456.     end;
  457.  
  458. {The following procedures are Pascal "glue" that allows Pascal to call a Procedure    }
  459. { from a ProcPtr.  It is similar to (*p) () construct used in the C dialect.  Different    }
  460. { procedures are necessary for the reason of Pascal's strongly typed parameter        }
  461. { list.  Fortunately, there are not too many calls which use different param lists        }
  462.  
  463. {The following procedures are Pascal "glue" that allows Pascal to call a Procedure    }
  464. { from a ProcPtr.  It is similar to (*p) () construct used in the C dialect.  Different    }
  465. { procedures are necessary for the reason of Pascal's strongly typed parameter        }
  466. { list.  Fortunately, there are not too many calls which use different param lists        }
  467.  
  468. {NOTE: Metrowerks Pascal supports function types, which makes it possible to pass}
  469. {ProcPtrs with type checking. That is MUCH better, so this is an interim solution.}
  470.  
  471. {$IFC GENERATINGPOWERPC }
  472. {$ELSEC}
  473.  
  474.     procedure CallpMouse (thePoint: Point; theTime: longint; theMods: integer; myProc: ProcPtr);
  475.  
  476.     inline
  477.         $205f,     {movea.l  (a7)+,a0        ; (a0) is a ptr to string, 4(a0) is mode}
  478.         $4e90;
  479.  
  480.     procedure CallpKey (theChar: char; theMods: integer; myProc: ProcPtr);
  481.     inline
  482.         $205f,     {movea.l  (a7)+,a0        ; (a0) is a ptr to string, 4(a0) is mode}
  483.         $4e90;
  484.  
  485.     procedure CallpEvent (theitem: integer; var theEvent: EventRecord; myProc: ProcPtr);
  486.     inline
  487.         $205f,     {movea.l  (a7)+,a0        ; (a0) is a ptr to string, 4(a0) is mode}
  488.         $4e90;
  489.  
  490.     function CallotherEvent (var theEvent: EventRecord; myProc: ProcPtr): Boolean;
  491.     inline
  492.         $205f, $4e90;
  493.  
  494.     procedure CallpBoolean (myBool: Boolean; myProc: ProcPtr);
  495. { Two calls use Booleans as one parameter arguments.  This procedure handles    }
  496. { both of them.                                                                            }
  497.     inline
  498.         $205f,     {movea.l  (a7)+,a0        ; (a0) is a ptr to string, 4(a0) is mode}
  499.         $4e90;
  500.  
  501.     procedure CallpInt (myInt: integer; myProc: ProcPtr);
  502. { Two calls use Booleans as one parameter arguments.  This procedure handles    }
  503. { both of them.                                                                            }
  504.     inline
  505.         $205f,     {movea.l  (a7)+,a0        ; (a0) is a ptr to string, 4(a0) is mode}
  506.         $4e90;
  507.  
  508.     procedure CallpMenu (myMenu: MenuHandle; myProc: ProcPtr);
  509. { Handle removeal of menus.     }
  510.     inline
  511.         $205f,     {movea.l  (a7)+,a0        ; (a0) is a ptr to string, 4(a0) is mode}
  512.         $4e90;
  513.  
  514.     procedure Callpnoarg (myProc: ProcPtr);
  515. { For all the Procedures that are called with no arguments                            }
  516.     inline
  517.         $205f,     {movea.l  (a7)+,a0        ; (a0) is a ptr to string, 4(a0) is mode}
  518.         $4e90;
  519.  
  520. {ADDED BY INGEMAR 18/9-93 to support new dialog filters}
  521. {IS IT POSSIBLE to use this for functions?}
  522.     procedure Callpfilter (theDialog: DialogPtr; var theEvent: EventRecord; var result: Boolean; myProc: ProcPtr);
  523.     inline
  524.         $205f,     {movea.l  (a7)+,a0        ; (a0) is a ptr to string, 4(a0) is mode}
  525.         $4e90;
  526.  
  527. {Some stuff that are here to avoid including EPPC and AppleEvents, added by Ingemar 23/7 -94}
  528.     const
  529.         kHighLevelEvent = 23;
  530.     function AEProcessAppleEvent (theEventRecord: EventRecord): OSErr;
  531.     inline
  532.         $303C, $021B, $A816;
  533.  
  534. {$ENDC}
  535.  
  536. {    General menu-handler.  Just passes selection to the handler's}
  537. {    select routine.  If the select routine is nil, selecting items from}
  538. {    the menu is a nop.}
  539.  
  540.     procedure DoMenuCommand (command: longint);
  541.  
  542.         var
  543.             menu: integer;
  544.             item: integer;
  545.             mh: MHandlerHnd;
  546.             p: ProcPtr;
  547.  
  548.     begin
  549.         menu := HiWrd(command);
  550.         item := LoWrd(command);
  551.         mh := mhList;
  552.         while (mh <> nil) do
  553.             begin
  554.                 p := mh^^.mhSelect;
  555.                 if ((menu = mh^^.mhID) and (p <> nil)) then
  556.                     begin
  557.                         callpInt(item, p);
  558.                         mh := nil;
  559.                     end
  560.                 else
  561.                     mh := mh^^.mhNext;
  562.             end;
  563.         HiliteMenu(0);
  564.     end;
  565.  
  566. {    Apple menu handler}
  567.  
  568. {    DoAppleItem:  If the first item was chosen, and there's an "About..."}
  569. {    item, call the procedure associated with it (if not nil).  If there}
  570. {    is no "About..." item or the item was not the first one, then open}
  571. {    the associated desk accessory.  The port is saved and restored}
  572. {    because OpenDeskAcc does not always preserve it correctly.}
  573.  
  574. {    DoAppleClobber disposes of the Apple menu.}
  575.  
  576.     procedure DoAppleItem (item: integer);
  577.  
  578.         var
  579.             curPort: GrafPtr;
  580.             str: Str255;
  581.             ignore: integer;
  582.             h: Handle;
  583.  
  584.     begin
  585.         if doAbout and (item = 1) then
  586.             begin
  587.                 if appleAboutProc <> nil then
  588.                     callpnoarg(appleAboutProc);
  589.             end
  590.         else
  591.             begin
  592.                 GetPort(curPort);
  593.                 GetMenuItemText(appleMenu, item, str);
  594.                 SetResLoad(false);
  595.                 h := GetNamedResource('DRVR', str);
  596.                 SetResLoad(true);
  597.                 if h <> nil then
  598.                     begin
  599.                         ReserveMem(GetResourceSizeOnDisk(h) + $1000);
  600.                         ignore := OpenDeskAcc(str);
  601.                     end;
  602.                 SetPort(curPort);
  603.             end;
  604.     end;
  605.  
  606.     procedure DoAppleClobber;
  607.     begin
  608.         DisposeMenu(appleMenu);
  609.     end;
  610.  
  611. { --------------------------------------------------------------------     }
  612. {                        Window-handler routing routines                            }
  613. {                                                                                        }
  614. {    Each routine sets the port to the handler's window before executing        }
  615. {    the handler procedure.                                                            }
  616. { --------------------------------------------------------------------     }
  617.  
  618.  
  619. {    Pass local mouse coordinates, click time, and the modifiers flag}
  620. {    word to the handler.  Should not be necessary to set the port, as}
  621. {       the click is passed to the active window's hander. }
  622.  
  623.     procedure DoMouse (h: WHandlerHnd; theEvent: EventRecord);
  624.  
  625.         var
  626.             p: ProcPtr;
  627.             thePt: Point;
  628.  
  629.     begin
  630.         if (h <> nil) then
  631.             begin
  632.                 p := h^^.whMouse;
  633.                 if p <> nil then
  634.                     begin
  635.                         thePt := theEvent.where;
  636.                         GlobalToLocal(thePt);
  637.                         callpMouse(thePt, theEvent.when, theEvent.modifiers, p);
  638.                     end;
  639.             end;
  640.     end;
  641.  
  642. {    Pass the character and the modifiers flag word to the handler.}
  643. {    Should not be necessary to set the port, as the  click is passed to the}
  644. {    active window's handler. }
  645.  
  646.     procedure DoKey (h: WHandlerHnd; ch: char; mods: integer);
  647.         var
  648.             p: ProcPtr;
  649.  
  650.     begin
  651.         if h <> nil then
  652.             begin
  653.                 p := h^^.whKey;
  654.                 if p <> nil then
  655.                     callpKey(ch, mods, p);
  656.             end;
  657.     end;
  658.  
  659. {    Call the window updating procedure, passing to it an indicator whether the}
  660. {    window has been resized or not.  Then clear the flag, assuming the update}
  661. {    proc took whatever action was necessary to respond to resizing.}
  662. {}
  663. {    If the handler doesn't have any update proc, the Begin/EndUpdate stuff}
  664. {    is still done, to clear the update region.  Otherwise the Window Manager }
  665. {    will keep generating update events for the window, stalling updates of}
  666. {    other windows.    }
  667.  
  668. {    Make sure to save and restore the port, as it's not always the active window}
  669. {    that's updated.    }
  670.  
  671.     procedure DoUpdate (h: WHandlerHnd);
  672.  
  673.         var
  674.             rh: WhandlerHnd;
  675.             p: ProcPtr;
  676.             updPort, tmpPort: GrafPtr;
  677.  
  678.     begin
  679.         rh := h;
  680.         if rh <> nil then
  681.             begin
  682.                 GetPort(tmpPort);
  683.                 updPort := rh^^.whWind;
  684.                 SetPort(updPort);
  685.                 BeginUpdate(updPort);
  686.                 p := rh^^.whUpdate;
  687.                 if p <> nil then
  688.                     begin
  689.                         callpBoolean(rh^^.whSized, p);
  690.                         rh^^.whSized := false;
  691.                     end;
  692.                 EndUpdate(updPort);
  693.                 SetPort(tmpPort);
  694.             end;
  695.     end;
  696.  
  697. {    Pass activate/deactivate notification to handler.  On activate, set the port to}
  698. {    the window coming active    }
  699.  
  700.     procedure DoActivate (h: WHandlerHnd; active: Boolean);
  701.  
  702.         var
  703.             p: ProcPtr;
  704.  
  705.     begin
  706.         if h <> nil then
  707.             begin
  708.                 if active then
  709.                     SetPort(h^^.whWind);
  710.                 p := h^^.whActivate;
  711.                 if p <> nil then
  712.                     callpBoolean(active, p);
  713.             end
  714.     end;
  715.  
  716. {    Execute a window handler's close proc.  The close box for handlers}
  717. {    for temp windows that want to remove themselves when the window}
  718. {    is closed can call SkelRmveWind to dispose of the window}
  719. {    and remove the handler from the window handler list.  Thus, windows}
  720. {    may be dynamically created and destroyed without filling up the}
  721. {    handler list with a bunch of invalid handlers.}
  722.  
  723. {    If the handler doesn't have a close proc, just hide the window.}
  724. {    The host should provide some way of reopening the window (perhaps}
  725. {    a menu selection).  Otherwise the window will be lost from user}
  726. {    control if it is hidden, since it won't receive user-initiated events.}
  727.  
  728. {    Since the close box of only the active window may be clicked, it}
  729. {    is not necessary to set the port . }
  730.  
  731. {    This is called both for regular and dialog windows.}
  732.  
  733.     procedure DoClose (h: WHandlerHnd);
  734.  
  735.         var
  736.             rh: WHandlerHnd;
  737.             p: ProcPtr;
  738.     begin
  739.         rh := h;
  740.         if rh <> nil then
  741.             begin
  742.                 p := rh^^.whClose;
  743.                 if (p <> nil) then
  744.                     callpnoarg(p)
  745.                 else
  746.                     HideWindow(rh^^.whWind);
  747.             end;
  748.     end;
  749.  
  750. {    Execute a window Handler's clobber proc.  This is called both for regular and dialog windows.}
  751. {    Must save, set and restore port, since any window (not just active one) may be clobbered    }
  752. {    at any time.}
  753. {}
  754. {    Don't need to check whether handler is nil, as in other handler procedures, since this is only}
  755. {    called by SkelRmveWind with a known valid handler.     }
  756.  
  757.     procedure DoClobber (h: WHandlerHnd);
  758.  
  759.         var
  760.             p: ProcPtr;
  761.             curPort: Grafptr;
  762.     begin
  763.         if (h <> nil) then
  764.             begin
  765.                 GetPort(curPort);
  766.                 SetPort(h^^.whWind);
  767.                 p := h^^.whClobber;
  768.                 if p <> nil then
  769.                     callpnoarg(p);
  770.                 SetPort(curPort);
  771.             end;
  772.     end;
  773.  
  774. {$IFC supportDialogs }
  775.  
  776. {    Handle event if it's for a dialog.  The event must be one of}
  777. {    those that is passed to dialogs according to dlogEventMask.}
  778. {    This mask can be set so that disk-inserts, for instance, don't}
  779. {    get eaten up.}
  780.  
  781.     function DoDialog (theEvent: EventRecord): Boolean;
  782.  
  783.         var
  784.             dh: WHandlerHnd;
  785.             theDialog: DialogPtr;
  786.             myDPeek: DialogPeek;
  787.             what: integer;
  788.             item: integer;
  789.             tmpPort: GrafPtr;
  790.             ignore: Boolean;
  791.             testme: longint;
  792.             hasfilter, filtered: Boolean;
  793.  
  794.     begin
  795.  
  796. {    handle command keys before they get to IsDialogEvent}
  797.  
  798.         what := theEvent.what;
  799.         testme := BSL(longint(1), what);
  800.         testme := BAnd(testme, longint(dlogEventMask));
  801.         if (((what = keydown) or (what = autokey)) and (BAnd(theEvent.modifiers, cmdkey) <> 0)) then
  802. { Bugfix by Ingemar above! }
  803.             begin
  804.                 DoMenuCommand(MenuKey(Char(BAnd(theEvent.message, charCodeMask))));
  805.                 DoDialog := true;
  806.             end
  807. {Filter procedure, Added by Ingemar 18/9 -93:}
  808.         else
  809.             begin
  810. {Check if theDialog has whFilter!}
  811. {Bugfix 941026: I used FrontWindow, which was really silly since that won't work}
  812. {for update events!}
  813.                 theDialog := DialogPtr(theEvent.message);
  814.                 dh := WHandlerHnd(GetDHandler(theDialog));
  815.                 filtered := false;
  816.                 hasfilter := dh <> nil;
  817.                 if hasfilter then
  818.                     hasfilter := dh^^.whFilter <> nil;
  819.                 if hasfilter then
  820.                     CallPFilter(theDialog, theEvent, filtered, dh^^.whFilter);
  821.                 DoDialog := filtered;
  822.                 if not filtered then
  823. {end of filter proc handling}
  824. {else}
  825.                     if testme > 0 then
  826.                         if IsDialogEvent(theEvent) then
  827.                             begin
  828.                                 if DialogSelect(theEvent, theDialog, item) then
  829.                                     begin
  830.                                         dh := WHandlerHnd(GetDHandler(theDialog));
  831.                                         if (dh <> nil) then
  832.                                             if (dh^^.whEvent <> nil) then
  833.                                                 begin
  834.                                                     GetPort(tmpPort);
  835.                                                     SetPort(theDialog);
  836.                                                     callpEvent(item, theEvent, dh^^.whEvent);
  837.                                                     SetPort(tmpPort);
  838.                                                 end;
  839.                                     end;
  840.                                 DoDialog := true;
  841.                             end
  842.                         else
  843.                             DoDialog := false;
  844.             end; {to match begin added with filter above}
  845.     end;
  846. {$ENDC}
  847.  
  848. { -------------------------------------------------------------------- }
  849. {                            Event-handling routines                        }
  850. { -------------------------------------------------------------------- }
  851.  
  852. {    Have either sized or zoomed the window.  Invalidate it to force}
  853. {    an update and set the 'resized' flag in the window handler true.}
  854. {    The port is assumed to be set to the port that changed size.        }
  855.  
  856.     procedure TriggerUpdate (h: WHandlerHnd; thePort: GrafPtr);
  857.  
  858.     begin
  859.         InvalRgn(thePort^.visRgn);
  860. {Changed by Ingemar 1/4-94. Was: InvalRect(thePort^.portRect);}
  861. {This is ok for rectangular windows, but all windows aren't rectangular!}
  862.         if (h <> nil) then
  863.             begin
  864.                 h^^.whSized := true;
  865.             end;
  866.     end;
  867.  
  868. {    Size a window.  If the window has a handler, use the grow limits}
  869. {    in the handler record, otherwise use the defaults.}
  870.  
  871. {    The portRect is invalidated to force an update event.    The handler's}
  872. {    update procedure should check the parameter passed to it to check}
  873. {    whether the window has changed size, if it needs to adjust itself to}
  874. {    the new size.  THIS IS A CONVENTION.  Update procs must notice grow}
  875. {    "events", there is no procedure specifically for such events.}
  876.  
  877. {    The clipping rectangle is not reset.  If the host application}
  878. {    keeps the clipping set equal to the portRect or something similar,}
  879. {    then it will have to arrange to treat window growing with more}
  880. {    care.}
  881. {}
  882. {    Since the grow region of only the active window may be clicked, it should}
  883. {    not be necessary to set the port.}
  884.  
  885.     procedure DoGrow (h: WHandlerHnd; thePort: GrafPtr; StartPt: Point);
  886.  
  887.         var
  888.             r: Rect;
  889.             growRes: longint;
  890.  
  891.     begin
  892.         if (h <> nil) then
  893.             begin
  894.                 r := h^^.whGrow;
  895.             end
  896.         else
  897.             r := growRect;
  898.         growRes := GrowWindow(thePort, startPt, r);
  899.         if growRes <> 0 then
  900.             begin
  901.                 SizeWindow(thePort, LoWrd(growRes), HiWrd(growRes), false);
  902.                 TriggerUpdate(h, thePort);
  903.             end;
  904.     end;
  905.  
  906.  
  907. {    Zoom the current window.  Very similar to DoGrow}
  908. {    Since the zoombox of only the active window may be clicked, it should not be necessary}
  909. {    to set the port.    }
  910.  
  911.     procedure DoZoom (h: WHandlerHnd; thePort: GrafPtr; partcode: integer);
  912.  
  913.     begin
  914.         ZoomWindow(thePort, partcode, false);
  915.         TriggerUpdate(h, thePort);
  916.     end;
  917.  
  918. {    General event handler}
  919.  
  920.     procedure DoEvent (theEvt: Eventrecord);
  921.  
  922.         var
  923.             theEvent: EventRecord;
  924.             evtPt: Point;
  925.             evtPort: GrafPtr;
  926.             evtPart: integer;
  927.             evtChar: char;
  928.             evtMods: integer;
  929.             h: WHandlerHnd;
  930.             r: Rect;
  931.             ignore: integer;
  932.  
  933.     begin
  934.         theEvent := theEvt;
  935. {$IFC supportDialogs }
  936.         if not (DoDialog(theEvent)) then
  937. {$ENDC}
  938.             begin
  939.                 evtPt := theEvent.where;
  940.                 evtMods := theEvent.modifiers; {Bug fixed by Ingemar 941027 - this statement was missing}
  941.                 case theEvent.what of
  942.                     nullEvent: 
  943.                         ;
  944.  
  945. {    Mouse click.  Get the window that the click occurred in, and the}
  946. {    part of the window.    Get WDHandler is called here, not GetWHandler, since}
  947. {    we need the handler for a window which might turn out to be a dialog window,}
  948. {    e.g., if the click is in a close box.}
  949.  
  950.                     mouseDown: 
  951.                         begin
  952.                             evtPart := FindWindow(evtPt, evtPort);
  953.                             h := GetWDHandler(evtPort);
  954.                             case evtPart of
  955.  
  956. {    Click in a desk accessory window.  Pass back to the system.}
  957.  
  958.                                 inSysWindow: 
  959.                                     SystemClick(theEvent, evtPort);
  960.  
  961. {    Click in menu bar.  Track the mouse and execute selected command,}
  962. {    if any.}
  963.  
  964.                                 inMenuBar: 
  965.                                     DoMenuCommand(MenuSelect(evtPt));
  966.  
  967. {    Click in grow box.  Resize window.}
  968.  
  969.                                 inGrow: 
  970.                                     DoGrow(h, evtPort, evtPt);
  971.  
  972. {    Click in title bar.  Drag the window around.  Leave at least}
  973. {    4 pixels visible in both directions.    Bug fix: The window, if not front, is}
  974. {    selected first to make sure it's at least activated (unless the command key is down - see Inside}
  975. {    Macintosh).  DragWindow seems to call StillDown first, so that clicks in drag regions while}
  976. {    machine is busy don't otherwise bring window to front if the mouse is already up by the time}
  977. {    DragWindow is called.}
  978.  
  979. {BUG??? Where is evtmods assigned???}
  980.  
  981.                                 inDrag: 
  982.                                     begin
  983.                                         if (evtPort <> FrontWindow) and (BAnd(evtmods, cmdKey) = 0) then
  984.                                             SelectWindow(evtPort);
  985.                                         r := screenPort^.portRect;
  986.                                         r.top := r.top + mBarHeight;        { Skip down past menu bar    }
  987.                                         InsetRect(r, 4, 4);
  988.                                         DragWindow(evtPort, evtPt, r);
  989.                                     end;
  990.  
  991. {    Click in close box.  Call the close proc if the window has one.}
  992.  
  993.                                 inGoAway: 
  994.                                     if (TrackGoAway(evtPort, evtPt)) then
  995.                                         DoClose(GetWDHandler(evtPort));
  996.  
  997. {    Click in content region.  If the window wasn't frontmost (active),}
  998. {    just select it, otherwise pass the click to the window's mouse}
  999. {    click handler.}
  1000.  
  1001.                                 inContent: 
  1002.                                     if (evtPort <> FrontWindow) then
  1003.                                         SelectWindow(evtPort)
  1004.                                     else
  1005.                                         DoMouse(h, theEvent);
  1006.  
  1007. {    Click in zoom box.  Track the click and then zoom the window if}
  1008. {    necessary}
  1009.  
  1010.                                 inZoomin, inZoomOut: 
  1011.                                     if (TrackBox(evtPort, evtPt, evtPart)) then
  1012.                                         DoZoom(h, evtport, evtPart);
  1013.                                 otherwise
  1014.                                     ;
  1015.                             end;{mousedown}
  1016.                         end;
  1017.  
  1018. {    Key event.  If the command key was down, process as menu item}
  1019. {    selection, otherwise pass the character and the modifiers flags}
  1020. {    to the active window's key handler.}
  1021.  
  1022. {    If dialogs are supported, there's no check for command-key}
  1023. {    equivalents, since that would have been checked in DoDialog.}
  1024.  
  1025.                     keydown, autokey: 
  1026.                         begin
  1027.                             evtChar := char(BAnd(theEvent.message, charCodeMask));
  1028.                             evtMods := theEvent.modifiers;
  1029.                             if BAnd(evtMods, cmdKey) > 0 then
  1030.                                 DoMenuCommand(menuKey(evtChar))
  1031.                             else
  1032.                                 DoKey(GetWHandler(FrontWindow), evtChar, evtMods);
  1033.                         end;
  1034.  
  1035. {    Update a window.}
  1036.  
  1037.                     updateEvt: 
  1038.                         DoUpdate(GetWHandler(WindowPtr(theEvent.message)));
  1039.  
  1040. {    Activate or deactivate a window.}
  1041.  
  1042.                     activateEvt: 
  1043.                         DoActivate(GetWHandler(WindowPtr(theEvent.message)), (BAnd(theEvent.modifiers, activeFlag) <> 0));
  1044.  
  1045. {    handle inserts of uninitialized disks}
  1046.  
  1047.                     diskEvt: 
  1048.                         if (HiWrd(theEvent.message) <> noErr) then
  1049.                             begin
  1050.                                 DILoad;
  1051.                                 ignore := DIBadMount(diskInitPt, theEvent.message);
  1052.                                 DIUnload;
  1053.                             end;
  1054.  
  1055. { Handle suspend/resume and Apple Events, added by Ingemar 23/7 -94}
  1056.  
  1057.                     OSevt: 
  1058.                         if gSuspendResumeHandler <> nil then
  1059.                             if BAND(BROTL(theEvent.message, 8), $FF) = SuspendResumeMessage then
  1060.                                 CallPBoolean(BAnd(theEvent.message, 1) <> 0, gSuspendResumeHandler);
  1061.  
  1062. { Handle Apple Events, added by Ingemar 23/7 -94}
  1063.  
  1064.                     kHighLevelEvent: 
  1065.                         if AEProcessAppleEvent(theEvent) <> noErr then
  1066.                             ;
  1067.  
  1068.                     otherwise
  1069.                 end;
  1070.             end;
  1071.     end;
  1072.  
  1073. { -------------------------------------------------------------------- }
  1074. {                        Interface (public) Routines                        }
  1075. { -------------------------------------------------------------------- }
  1076.  
  1077.  
  1078. {    Initialize the various Macintosh Managers.}
  1079. {    Set default upper limits on window sizing.}
  1080. {    FlushEvents does NOT toss disk insert events, so that disks}
  1081. {    inserted while the application is starting up don't result}
  1082. {    in dead drives.}
  1083. {    NoMasters is the number of times to call MoreMasters.  gzProc is the address of a user - provided}
  1084. {    grow zone function procedure to call if memory gets tight.  Pass nil if none to be used.    }
  1085.  
  1086.     procedure SkelInit;
  1087.         var
  1088.             i: integer;
  1089.  
  1090.     begin
  1091.  
  1092. { For non-Lightspeed Pascal users, the following inits are included as a compile time option, }
  1093. {  See the $SETC definition at the beginning of the unit.  }
  1094.  
  1095. {$IFC UNDEFINED THINK_PASCAL }
  1096.         InitGraf(@qd.thePort);
  1097.         InitFonts;
  1098.         InitWindows;
  1099.         InitMenus;
  1100.         TEInit;
  1101.         InitDialogs(nil);
  1102.         MaxApplZone;
  1103. {$ENDC}
  1104.  
  1105.         FlushEvents(everyEvent - diskMask, 0);
  1106.         for i := 1 to noMasters do
  1107.             MoreMasters;
  1108.         if myGrowZone <> nil then
  1109.             SetGrowZone(myGrowZone);
  1110.  
  1111.         InitCursor;
  1112.  
  1113. {Added by Ingemar 12/11-93, for WNE-support:}
  1114.         WNEImplemented := NGetTrapAddress($60, ToolTrap) <> NgetTrapAddress($9F, ToolTrap);
  1115.         SkelSetSleep(defaultSleep);
  1116.         SkelSetMouseRgn(nil);
  1117. {End WNE-support}
  1118.  
  1119.         whList := nil;
  1120.         whClobOnRmve := true;
  1121.         SetRect(growRect, 80, 80, 512, 342 - mBarHeight);
  1122.         mhList := nil;
  1123.         mhClobOnRmve := true;
  1124.         appleID := 0;
  1125.         appleAboutProc := nil;
  1126.         doAbout := false;
  1127.         doneflag := 0;
  1128.         pBkgnd := nil;
  1129.         pEvent := nil;
  1130.         pEventflag := false;
  1131.         eventmask := everyEvent;
  1132.         diskInitPt.v := 120;
  1133.         diskInitPt.h := 100;
  1134. {$IFC supportDialogs }
  1135.         dlogEventMask := $16f;
  1136. {$ENDC}
  1137.  
  1138. {    Set upper limits of window sizing to machine screen size.  Allow}
  1139. {    for the menu bar.}
  1140.  
  1141.         GetWMgrPort(screenport);
  1142.         growRect.right := screenPort^.portRect.right;
  1143.         growRect.bottom := screenPort^.portRect.bottom - mBarHeight;
  1144.  
  1145. {    Set caching global variables to nil }
  1146.  
  1147.         oldWindow := nil;
  1148.         oldWDHandler := nil;
  1149.     end;
  1150.  
  1151. {    Main loop.}
  1152.  
  1153. {    Task care of DA's with SystemTask.}
  1154. {    Run background task if there is one.}
  1155. {    If there is an event, check for an event hook.  If there isn't}
  1156. {    one defined, or if there is but it returns false, call the}
  1157. {    general event handler.  (Hook returns true if TransSkel should}
  1158. {    ignore the event.)}
  1159. {    If no event, call the "no-event" handler for the front window and for}
  1160. {    any other windows with idle procedures that are always supposed}
  1161. {    to run.  This is done in such a way that it is safe for idle procs}
  1162. {    to remove the handler for their own window if they want (unlikely,}
  1163. {    but...)  This loop doesn't check whether the window is really}
  1164. {    a dialog window or not, but it doesn't have to, because such}
  1165. {    things always have a nil idle proc.}
  1166. {    }
  1167. {    doneFlag is reset upon exit.  This allows it to be called}
  1168. {    repeatedly, or recursively.}
  1169.  
  1170. {    Null events are looked at (in SkelMain)}
  1171. {    and passed to the event handler.  This is necessary to make sure}
  1172. {    DialogSelect gets called repeatedly, or the caret won't blink if}
  1173. {    a dialog has any editText items.  Null events are not passed to any event-inspecting hook that may}
  1174. {    be installed.}
  1175.  
  1176.     procedure SkelMain;
  1177.  
  1178.         var
  1179.             theEvent: EventRecord;
  1180.             wh, wh2: WHandlerHnd;
  1181.             w: WindowPtr;
  1182.             haveEvent, testpevent, testbool: Boolean;
  1183.             tmpPort: GrafPtr;
  1184.             p: ProcPtr;
  1185.  
  1186.     begin
  1187.         while (doneFlag = 0) do
  1188.             begin
  1189.                 if WNEImplemented then {Added by Ingemar 12/11-93, for WNE-support:}
  1190.                     begin
  1191.                         if (pBkgnd <> nil) then
  1192.                             callpnoarg(pBkgnd);
  1193.                         haveEvent := WaitNextEvent(eventMask, theEvent, sleepTicks, mouseRgn);
  1194.                     end
  1195.                 else
  1196.                     begin {Old way:}
  1197.                         SystemTask;
  1198.                         if (pBkgnd <> nil) then
  1199.                             callpnoarg(pBkgnd);
  1200.                         haveEvent := GetNextEvent(eventMask, theEvent);
  1201.                     end;
  1202.  
  1203.                 if (pEvent <> nil) then
  1204.                     testpevent := CallotherEvent(theEvent, pEvent)
  1205.                 else
  1206.                     testpevent := false;
  1207. { following line fixed from version 1.02 & 1.03     [but was still buggy! /Ingemar]}
  1208. {$IFC supportDialogs }
  1209.                 if (pEvent = nil) or (testpevent = false) then {haveEvent and <- This is wrong for modeless dialogs according to page 416? Changed by Ingemar 6/8 -93}
  1210. {$ELSEC}
  1211.                     if haveEvent and ((pEvent = nil) or (testpevent = false)) then { Old line. IFC'ad by Ingemar 6/8 -93}
  1212. {$ENDC}
  1213.                         DoEvent(theEvent);
  1214.                 if not haveEvent then
  1215.                     begin
  1216.                         wh := whList;
  1217.                         GetPort(tmpPort);
  1218.                         while (wh <> nil) do
  1219.                             begin
  1220.                                 wh2 := wh^^.whNext;
  1221.                                 w := wh^^.whWind;
  1222.                                 if ((w = FrontWindow) or not wh^^.whFrontOnly) then
  1223.                                     begin
  1224.                                         SystemTask;
  1225.                                         if (wh^^.whIdle <> nil) then
  1226.                                             begin
  1227.                                                 SetPort(wh^^.whWind);
  1228.                                                 p := wh^^.whIdle;
  1229.                                                 if (p <> nil) then
  1230.                                                     callpnoarg(p);
  1231.                                             end;
  1232.                                     end;
  1233.                                 wh := wh2;
  1234.                             end;
  1235.                         SetPort(tmpPort);
  1236.                     end;
  1237.             end;
  1238.         doneFlag := 0;
  1239.     end;
  1240.  
  1241. {    Tell SkelMain to stop}
  1242.  
  1243.     procedure SkelWhoa;
  1244.     begin
  1245.         doneFlag := 1;
  1246.     end;
  1247.  
  1248. {    Clobber all the menu, window and dialog handlers}
  1249.  
  1250.     procedure SkelClobber;
  1251.  
  1252.  
  1253.     begin
  1254.         oldWDHandler := nil;
  1255.         oldWindow := nil;
  1256.         while (whList <> nil) do
  1257.             begin
  1258.                 SkelRmveWind(whList^^.whWind);
  1259.             end;
  1260.         while (mhList <> nil) do
  1261.             begin
  1262.                 SkelRmveMenu(GetMenuHandle(mhList^^.mhID));
  1263.             end;
  1264.     end;
  1265.  
  1266. { -------------------------------------------------------------------- }
  1267. {                        Menu-handler interface routines                            }
  1268. { -------------------------------------------------------------------- }
  1269.  
  1270.  
  1271.  
  1272.  
  1273. {    Install handler for a menu.  Remove any previous handler for it.}
  1274. {    Pass the following parameters:}
  1275.  
  1276. {    theMenu    Handle to the menu to be handled.  Must be created by host.}
  1277. {    pSelect    Proc that handles selection of items from menu.  If this is}
  1278. {            nil, the menu is installed, but nothing happens when items}
  1279. {            are selected from it.}
  1280. {    pClobber Proc for disposal of handler's data structures.  Usually}
  1281. {            nil for menus that remain in menu bar until program}
  1282. {            termination.}
  1283.  
  1284. {    The menu is installed and drawn in the menu bar.}
  1285.  
  1286. {     Return false if no handler could be allocated, true if successful. }
  1287.  
  1288.     function CommonSkelMenu (theMenu: MenuHandle; pSelect: ProcPtr; pClobber: ProcPtr): Boolean;
  1289.         var
  1290.             mh: MHandlerHnd;
  1291.             myHand: Handle;
  1292.     begin
  1293.         mhClobOnRmve := false;
  1294.         SkelRmveMenu(theMenu);
  1295.         mhClobOnRmve := true;
  1296.         myHand := NewHandle(Sizeof(MHandler));
  1297.         CommonSkelMenu := false;
  1298.         if myHand <> nil then
  1299.             begin
  1300.                 CommonSkelMenu := true;                    { show we really got the memory }
  1301.                 mh := MHandlerHnd(myHand);
  1302.                 mh^^.mhNext := mhList;
  1303.                 mhList := MHandlerHnd(myHand);
  1304.                 mh^^.mhID := theMenu^^.menuID;    { get menu id number }
  1305.                 mh^^.mhSelect := pSelect;            { install selection handler }
  1306.                 mh^^.mhClobber := pClobber;        { install disposal handler }
  1307.             end;
  1308.     end;
  1309.  
  1310. {  Install handler for a normal menu }
  1311.  
  1312.     function SkelMenu;
  1313.         var
  1314.             success: Boolean;
  1315.     begin
  1316.         success := CommonSkelMenu(theMenu, pSelect, pClobber);
  1317.         SkelMenu := success;
  1318.         if success then
  1319.             begin
  1320.                 InsertMenu(theMenu, 0);            { put menu at end of menu bar }
  1321.                 if DrawBar then
  1322.                     DrawMenuBar;
  1323.             end;
  1324.     end;
  1325.  
  1326. {    Install handler for a hiearcical menu.  Almost same as above.}
  1327. {    Added by Ingemar 22/8 -93}
  1328.  
  1329.     function SkelHMenu;
  1330.         var
  1331.             success: Boolean;
  1332.     begin
  1333.         success := CommonSkelMenu(theMenu, pSelect, pClobber);
  1334.         SkelHMenu := success;
  1335.         if success then
  1336.             begin
  1337.                 InsertMenu(theMenu, -1);            { put menu at end of menu bar }
  1338.             end;
  1339.     end;
  1340.  
  1341.  
  1342. {    Remove a menu handler.  This calls the handler's disposal routine}
  1343. {    and then takes the handler out of the handler list and disposes}
  1344. {    of it.}
  1345.  
  1346. {    Note that the menu MUST be deleted from the menu bar before calling}
  1347. {    the clobber proc, because the menu bar will end up filled with}
  1348. {    garbage if the menu was allocated with NewMenu (see discussion of}
  1349. {    DisposeMenu in Menu Manager section of Inside Macintosh).}
  1350.  
  1351.     procedure SkelRmveMenu;
  1352.  
  1353.         var
  1354.             mID: integer;
  1355.             h, h2: MHandlerHnd;
  1356.             p: ProcPtr;
  1357.             returnflag: Boolean;
  1358.  
  1359.     begin
  1360.         mID := theMenu^^.menuID;
  1361.         returnflag := false;
  1362.         if mhlist <> nil then
  1363.             begin
  1364.                 if mhList^^.mhID = mID then
  1365.                     begin
  1366.                         h2 := mhlist;
  1367.                         mhList := h2^^.mhNext;
  1368.                     end
  1369.                 else
  1370.                     begin
  1371.                         h := mhList;
  1372.                         while (h <> nil) and not returnflag do
  1373.                             begin
  1374.                                 h2 := h^^.mhNext;
  1375.                                 if (h2 = nil) then
  1376.                                     begin
  1377.                                         h := nil;
  1378.                                         returnflag := true;
  1379.                                     end
  1380.                                 else if h2^^.mhID = mID then
  1381.                                     begin
  1382.                                         h^^.mhNext := h2^^.mhNext;
  1383.                                         h := nil;
  1384.                                     end;
  1385.                                 if h <> nil then
  1386.                                     h := h2;
  1387.                             end;
  1388.                     end;
  1389.                 if not returnflag then
  1390.                     begin
  1391.                         DeleteMenu(mID);
  1392.                         DrawMenuBar;
  1393.                         p := h2^^.mhClobber;
  1394.                         if mhClobOnRmve and (p <> nil) then
  1395.                             callpMenu(theMenu, p);
  1396.                         DisposeHandle(Handle(h2));
  1397.                     end;
  1398.             end;
  1399.     end;
  1400.  
  1401. {    Install a handler for the Apple menu.}
  1402.  
  1403. {    SkelApple is called if TransSkel is supposed to handle the apple}
  1404. {    menu itself.  The title is the title of the first item.  If nil,}
  1405. {    then only desk accessories are put into the menu.  If not nil, then}
  1406. {    the title is entered as the first item, followed by a gray line,}
  1407. {    then the desk accessories.}
  1408.  
  1409. {     SkelApple does not cause the menubar to be drawn, so if the Apple menu is the only menu, }
  1410. {    DrawMenuBar must be called afterward.}
  1411.  
  1412. {    No value is returned, unlike SkelMenu.  It is assumed that SkelApple will be called so early in the}
  1413. {    application that the call to SkelMenu is virtually certain to succeed.  }
  1414.  
  1415.     procedure SkelApple;
  1416.  
  1417.         var
  1418.             appleTitle: Str255;
  1419.             dummy: boolean;
  1420.     begin
  1421.         appleTitle := ' ';
  1422.         appleTitle[1] := char($14);
  1423.         appleID := 1;
  1424.         AppleMenu := NewMenu(appleID, appleTitle);
  1425.         if aboutTitle <> '' then
  1426.             begin
  1427.                 doAbout := true;
  1428.                 AppendMenu(appleMenu, aboutTitle);
  1429.                 AppendMenu(appleMenu, '(-');
  1430.                 AppleAboutProc := aboutProc;
  1431.             end;
  1432.         AppendResMenu(appleMenu, 'DRVR');
  1433.         dummy := SkelMenu(appleMenu, @DoAppleItem, @DoAppleClobber, false);
  1434.     end;
  1435.  
  1436. { -------------------------------------------------------------------- }
  1437. {                    Window-handler interface routines                    }
  1438. { -------------------------------------------------------------------- }
  1439.  
  1440.  
  1441.  
  1442. {    Install handler for a window.  Remove any previous handler for it.}
  1443. {    Pass the following parameters:}
  1444.  
  1445. {    theWind    Pointer to the window to be handled.  Must be created by host.}
  1446. {    pMouse    Proc to handle mouse clicks in window.  The proc will be}
  1447. {            passed the point (in local coordinates), the time of the}
  1448. {            click, and the modifier flags word.}
  1449. {    pKey    Proc to handle key clicks in window.  The proc will be passed}
  1450. {            the character and the modifier flags word.}
  1451. {    pUpdate    Proc for updating window.  TransSkel brackets calls to update}
  1452. {            procs with calls to BeginUpdate and EndUpdate, so the visRgn}
  1453. {            is set up correctly.  A flag is passed indicating whether the}
  1454. {            window was resized or not.  BY CONVENTION, the entire portRect}
  1455. {            is invalidated when the window is resized.  That way, the}
  1456. {            handler's update proc can redraw the entire content region}
  1457. {            without interference from BeginUpdate/EndUpdate.  The flag}
  1458. {            is set to false after the update proc is called; the}
  1459. {            assumption is made that it will notice the resizing and}
  1460. {            respond appropriately.}
  1461. {    pActivate Proc to execute when window is activated or deactivated.}
  1462. {            A boolean is passed to it which is true if the window is}
  1463. {            coming active, false if it's going inactive.}
  1464. {    pClose    Proc to execute when mouse clicked in close box.  Useful}
  1465. {            mainly to temp window handlers that want to know when to}
  1466. {            self-destruct (with SkelRmveWind).}
  1467. {    pClobber Proc for disposal of handler's data structures}
  1468. {    pIdle    Proc to execute when no events are pending.}
  1469. {    frontOnly True if pIdle should execute on no events only when}
  1470. {            theWind is frontmost, false if executes all the time.  Note}
  1471. {            that if it always goes, everything else may be slowed down!}
  1472.  
  1473. {    If a particular procedure is not needed (e.g., key events are}
  1474. {    not processed by a handler), pass nil in place of the appropriate}
  1475. {    procedure address.}
  1476.  
  1477. {    Return false  if no handler could be allocated, true if successful.}
  1478.  
  1479.     function SkelWindow;
  1480.  
  1481.         var
  1482.             hHand: WhandlerHnd;
  1483.  
  1484.     begin
  1485.         whClobOnRmve := false;
  1486.         SkelRmveWind(theWind);
  1487.         whClobOnRmve := true;
  1488.  
  1489. {    Get new handler, attach to list of handlers.  It is attached to the beginning of the list, which is simpler;}
  1490. {    the order should be irrelevant to the hose, anyway. }
  1491.  
  1492.         hHand := WHandlerHnd(NewHandle(Sizeof(WHandler)));
  1493.         SkelWindow := false;
  1494.         if hHand <> nil then
  1495.             begin
  1496.                 hHand^^.whNext := whList;
  1497.                 whList := hHand;
  1498.                 with hHand^^ do
  1499.                     begin
  1500.                         SkelWindow := true;                    { Show that we got the memory }
  1501.                         whWind := theWind;
  1502.                         whMouse := pMouse;
  1503.                         whKey := pKey;
  1504.                         whUpdate := pUpdate;
  1505.                         whActivate := pActivate;
  1506.                         whClose := pClose;
  1507.                         whClobber := pClobber;
  1508.                         whIdle := pIdle;
  1509.                         whFrontOnly := frontOnly;
  1510.                         whSized := false;
  1511.                         whGrow := GrowRect;
  1512.                     end;
  1513.             end;
  1514.         SetPort(theWind); {Is this allowed for hidden windows? I thought so, but… /Ingemar, dec 93}
  1515.     end;
  1516.  
  1517. {    Remove a window handler.  This calls the handler's disposal routine}
  1518. {    and then takes the handler out of the handler list and disposes}
  1519. {    of it.}
  1520.  
  1521. {    SkelRmveWind is also called by SkelRmveDlog.}
  1522.  
  1523. {    Note that if the window cache variable is set to the window whose handler is being clobbered, the }
  1524. {    variable must be zeroed.    }
  1525.  
  1526.     procedure SkelRmveWind;
  1527.  
  1528.         var
  1529.             h, h2: WHandlerHnd;
  1530.             returnflag: Boolean;
  1531.  
  1532.     begin
  1533.         if theWind = oldWindow then
  1534.             begin
  1535.                 oldWindow := nil;
  1536. {•    oldWDHandler := nil;•}
  1537.             end;
  1538.  
  1539.         if (whList <> nil) then
  1540.             begin
  1541.                 returnflag := false;
  1542.                 if whList^^.whWind = theWind then
  1543.                     begin
  1544.                         h2 := whlist;
  1545.                         whList := whList^^.whNext;
  1546.                     end
  1547.                 else
  1548.                     begin
  1549.                         h := whList;
  1550.                         while (h <> nil) and not returnflag do
  1551.                             begin
  1552.                                 h2 := h^^.whNext;
  1553.                                 if (h2 = nil) then
  1554.                                     begin
  1555.                                         h := nil;
  1556.                                         returnflag := true;
  1557.                                     end
  1558.                                 else if h2^^.whWind = theWind then
  1559.                                     begin
  1560.                                         h^^.whNext := h2^^.whNext;
  1561.                                         h := nil;
  1562.                                     end;
  1563.                                 if h <> nil then
  1564.                                     h := h2;
  1565.                             end;
  1566.                     end;
  1567.                 if not returnflag then
  1568.                     begin
  1569.                         if (whClobOnRmve) then
  1570.                             DoClobber(h2);
  1571.                         DisposeHandle(Handle(h2));
  1572.                     end;
  1573.             end;
  1574.     end;
  1575.  
  1576. {$IFC supportDialogs }
  1577.  
  1578. { -------------------------------------------------------------------- }
  1579. {                    Dialog-handler interface routines                                }
  1580. { -------------------------------------------------------------------- }
  1581.  
  1582.  
  1583.  
  1584. {    Install a dialog handler.  Remove any previous handler for it.}
  1585. {    SkelDialog calls SkelWindow as a subsidiary to install a window}
  1586. {    handler, then sets the event procedure on return.}
  1587.  
  1588. {    Pass the following parameters:}
  1589.  
  1590. {    theDialog    Pointer to the dialog to be handled.  Must be created}
  1591. {            by host.}
  1592. {    pEvent    Event-handling proc for dialog events.}
  1593. {    pClose    Proc to execute when mouse clicked in close box.  Useful}
  1594. {            mainly to dialog handlers that want to know when to}
  1595. {            self-destruct (with SkelRmveDlog).}
  1596. {    pClobber Proc for disposal of handler's data structures}
  1597.  
  1598. {    If a particular procedure is not needed, pass nil in place of}
  1599. {    the appropriate procedure address.}
  1600.  
  1601. {    Return false if no handler could be allocated, true if successful.}
  1602.  
  1603.     function SkelDialog;
  1604.  
  1605.         var
  1606.             wh: WHandlerHnd;
  1607.             aBool: Boolean;
  1608.  
  1609.     begin
  1610.         aBool := SkelWindow(theDialog, nil, nil, nil, nil, pClose, pClobber, nil, false);
  1611.         if aBool <> false then
  1612.             begin
  1613.                 wh := GetWDHandler(theDialog);
  1614.                 wh^^.whEvent := pEvent;
  1615. {Added by Ingemar 18/9 -93:}
  1616.                 wh^^.whFilter := pFilter; {Install a filter function to be called *before* IsDialogEvent!}
  1617.             end;
  1618.         SkelDialog := aBool;
  1619.     end;
  1620.  
  1621. {    Remove a dialog and its handler}
  1622.  
  1623.     procedure SkelRmveDlog;
  1624.  
  1625.     begin
  1626.         SkelRmveWind(theDialog);
  1627.     end;
  1628. {$ENDC}
  1629. { -------------------------------------------------------------------- }
  1630. {                    Miscellaneous interface routines                    }
  1631. { -------------------------------------------------------------------- }
  1632.  
  1633.  
  1634. {    Override the default sizing limits for a window, or, if theWind}
  1635. {    is nil, reset the default limits used by SkelWindow.}
  1636.  
  1637.     procedure SkelGrowBounds;
  1638.  
  1639.         var
  1640.             h: WHandlerHnd;
  1641.             r: Rect;
  1642.  
  1643.     begin
  1644.         if theWind = nil then
  1645.             SetRect(growRect, hLo, vLo, hHi, vHi)
  1646.         else
  1647.             begin
  1648.                 h := GetWHandler(theWind);
  1649.                 if h <> nil then
  1650.                     begin
  1651.                         SetRect(r, hLo, vLo, hHi, vHi);
  1652.                         h^^.whGrow := r;
  1653.                     end;
  1654.             end;
  1655.     end;
  1656.  
  1657. {    Set the event mask.}
  1658.  
  1659.     procedure SkelEventMask;
  1660.  
  1661.     begin
  1662.         eventMask := mask;
  1663.     end;
  1664.  
  1665. {    Return the event mask.}
  1666.  
  1667.     procedure SkelGetEventMask;
  1668.  
  1669.     begin
  1670.         mask := eventMask;
  1671.     end;
  1672.  
  1673. {    Install a background task.  If p is nil, the current task is}
  1674. {    disabled.}
  1675.  
  1676.     procedure SkelBackground;
  1677.  
  1678.     begin
  1679.         pBkgnd := p;
  1680.     end;
  1681.  
  1682. {    Return the current background task.  Return nil if none.}
  1683.  
  1684.     procedure SkelGetBackground;
  1685.     begin
  1686.         p := pBkgnd;
  1687.     end;
  1688.  
  1689. {    Install an event-inspecting hook.  If p is nil, the hook is}
  1690. {    disabled.}
  1691.  
  1692.     procedure SkelEventHook;
  1693.  
  1694.     begin
  1695.         pEvent := p;
  1696.     end;
  1697.  
  1698.     procedure SkelGetEventHook;
  1699.  
  1700.     begin
  1701.         p := pEvent;
  1702.     end;
  1703. {$IFC supportDialogs }
  1704.  
  1705. {    Set the mask for event types that will be passed to dialogs.}
  1706. {    Bit 1 is always set, so that null events will be passed.}
  1707. {    If this is not done, the caret does not blink in editText items.}
  1708.  
  1709.     procedure SkelDlogMask;
  1710.  
  1711.     begin
  1712.         dlogEventMask := BitOr(mask, 1);
  1713.     end;
  1714.  
  1715. {    Return the current dialog event mask.}
  1716.  
  1717.     procedure SkelGetDlogMask;
  1718.  
  1719.     begin
  1720.         mask := dlogEventMask;
  1721.     end;
  1722. {$ENDC}
  1723. end.